home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Gfx / Conv / NetPBM / Install next >
Text File  |  1995-11-24  |  709b  |  34 lines

  1. (if (= @language "deutsch")
  2.     (
  3.         (SET Intro "Wilkommen zum Installer-Script für NetPBM")
  4.         (SET Where "Wohin soll das NetPBM Paket hinkopiert werden ? Es wir ein Verzeichnis namens NetPBM angelegt")
  5.     )
  6. )
  7. (if (= @language "english")
  8.     (
  9.         (SET Intro "Welcome to the installer-script for NetPBM")
  10.         (SET Where "Where do wou want to place the NetPBM packet ? A drawer called NetPBM will be created")
  11.     )
  12. )
  13.  
  14. (MESSAGE Intro)
  15.  
  16. (SET Wuerg
  17.     (ASKDIR
  18.         (PROMPT Where)
  19.         (DEFAULT "sys:")
  20.         (HELP "")
  21.     )
  22. )
  23.  
  24. (SET Mama (TACKON Wuerg "NetPBM"))
  25.  
  26. (RUN (CAT "makedir \""Mama"\""))
  27.  
  28. (COPYFILES
  29.     (SOURCE ":Gfx/Conv/NetPBM/")
  30.     (DEST   Mama)
  31.     (INFOS)
  32.     (ALL)
  33. )
  34.